home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
jaz_clib.arc
/
JZSETINT.C
< prev
next >
Wrap
Text File
|
1989-04-09
|
245b
|
14 lines
#include <jaz.h>
jzsetint(fintnum,fvec)
int fintnum;
TVECTOR fvec;
{
TREG wreg;
wreg.h.ah = 0x25;
wreg.h.al = fintnum;
wreg.x.ds = fvec.segment;
wreg.x.dx = fvec.offset;
msdos(&wreg); /* set the interrupt vector */
}